home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Audio-DSP / NU / Source / PrefsManager.h < prev    next >
Encoding:
Text File  |  1992-12-25  |  1.1 KB  |  42 lines

  1. #import <objc/Object.h>
  2.  
  3. // 
  4. // here are definitions of the
  5. // defaults database flags character
  6. // positions, i.e. the index of the
  7. // character in NuFlags
  8. #define BACKUPRTF 0
  9. #define DEBUGFILES 1
  10. #define MULTIPLECLASSWINDOWS 2
  11.  
  12. @interface PrefsManager: Object
  13. {  id // the preferences view
  14.      prefView,
  15.      // default path
  16.      NuPath,
  17.      // default font and size
  18.      NXFont, NXFontSize,
  19.      // classmanager and workspace behavior
  20.      manyOne, backupRTF, 
  21.      // classmanager formatting:
  22.      // importText, atText, methodText,
  23.      // commentText, otherText     
  24.      classText0, classText1,
  25.      classText2, classText3, classText4,
  26.      // compile and link parameters
  27.      compilerOptions, linkBrowser,
  28.      linkList, debugFile,
  29.     // need to change behavior of class text scroll object
  30.      classTextScroller ;
  31. }
  32.  
  33. - (int)browser:sender fillMatrix:matrix inColumn:(int)column ; 
  34. - browser:sender loadCell:cell atRow:(int)row inColumn:(int)column ;
  35. - changePref: sender ;
  36. - linkAdd: sender ;
  37. - linkList ;
  38. - linkRemove: sender ;
  39. - setDefaults: sender ;
  40. - setNuPath ;
  41.  
  42. @end